home *** CD-ROM | disk | FTP | other *** search
/ START Magazine / START VOL 4 NO 1.st / POGOSRC.ARC / ERRORS.C < prev    next >
Encoding:
C/C++ Source or Header  |  1985-11-20  |  4.9 KB  |  368 lines

  1. /* error.c - Routines to tell you what line you forgot to close 
  2.     that parenthesis etc. */
  3. #include <stdio.h>
  4. #include "pogo.h"
  5.  
  6. err_info(s)
  7. char *s;
  8. {
  9. if (run_time)
  10.     {
  11.     to_text();
  12.     puts(s);
  13.     }
  14. else
  15.     printf("%s line %d: %s\n", title, line_count, s);
  16. }
  17.  
  18. wait_ok()
  19. {
  20. puts("Press <return> to continue kind sir or madam");
  21. getchar();
  22. }
  23.  
  24. /* error handling messages */
  25. say_err(s)
  26. char *s;
  27. {
  28. if (!run_time)
  29.     printf("%s", line_buf);
  30. err_info(s);
  31. wait_ok();
  32. }
  33.  
  34. fatal()
  35. {
  36. global_err = 1;
  37. got_stop = 1;
  38. run_abort = 1;
  39. }
  40.  
  41. say_fatal(s)
  42. char *s;
  43. {
  44. say_err(s);
  45. fatal();
  46. }
  47.  
  48. outta_memory()
  49. {
  50. say_fatal("Out of memory");
  51. }
  52.  
  53. cant_create(n)
  54. char *n;
  55. {
  56. char buf[120];
  57.  
  58. sprintf(buf, "Can't create file %s", n);
  59. puts(buf);
  60. say_fatal("Disk full or write protected?");
  61. }
  62.  
  63. cant_find(n)
  64. char *n;
  65. {
  66. char buf[120];
  67.  
  68. sprintf(buf, "Can't find file %s", n);
  69. say_fatal(buf);
  70. }
  71.  
  72. mangled(n)
  73. char *n;
  74. {
  75. char buf[120];
  76.  
  77. sprintf(buf, "File %s is damaged or wrong type", n);
  78. say_fatal(buf);
  79. }
  80.  
  81.  
  82. truncated(n)
  83. char *n;
  84. {
  85. char buf[120];
  86.  
  87. sprintf(buf, "Unexpected end of file %s\n", n);
  88. say_fatal(buf);
  89. }
  90.  
  91. #define BSZ 80
  92. expecting_got(e, g)
  93. char *e, *g;
  94. {
  95. char buf[BSZ];
  96.  
  97. g[BSZ/2] = 0;        /* don't weird out on real long tokens */
  98. sprintf(buf, "Expecting %s got %s\n", e, g);
  99. say_fatal(buf);
  100. }
  101.  
  102. unmatched(s)
  103. char *s;
  104. {
  105. char buf[40];
  106.  
  107. sprintf(buf, "Unmatched %s", s);
  108. say_fatal(buf);
  109. }
  110.  
  111. runtime_err(s)
  112. char *s;
  113. {
  114. to_text();
  115. puts(s);
  116. run_abort = 1;
  117. wait_ok();
  118. }
  119.  
  120. graphics_only(s)
  121. char *s;
  122. {
  123. char buf[80];
  124.  
  125. sprintf(buf, "%s only available after a ToGraphics call", s);
  126. runtime_err(buf);
  127. }
  128.  
  129. no_such_creature(s, id)
  130. char *s;
  131. int id;
  132. {
  133. char buf[80];
  134.  
  135. sprintf(buf, "Can't %s(%d) - creature # %d doesn't exist", s, id, id);
  136. runtime_err(buf);
  137. }
  138.  
  139.  
  140. not_in_creature(what)
  141. char *what;
  142. {
  143. char buf[80];
  144.  
  145. if (in_creature)
  146.     {
  147.     sprintf(buf, "%s not allowed inside creature", what);
  148.     say_fatal(buf);
  149.     return(0);
  150.     }
  151. return(1);
  152. }
  153.  
  154.  
  155. only_in_creature(what)
  156. char *what;
  157. {
  158. char buf[80];
  159.  
  160. if (!in_creature)
  161.     {
  162.     sprintf(buf, "%s only allowed inside creature", what);
  163.     say_fatal(buf);
  164.     return(0);
  165.     }
  166. return(1);
  167. }
  168.  
  169. expecting_com_rpar()
  170. {
  171. expecting_got(", or )", ctoke);
  172. }
  173.  
  174. too_many_params(name)
  175. char *name;
  176. {
  177. char buf[80];
  178.  
  179. sprintf(buf, "%s - more than max %d parameters", name);
  180. say_fatal(buf);
  181. }
  182.  
  183.  
  184. choke()
  185. {
  186. puts(line_buf);
  187. puts(ctoke);
  188. say_fatal("Pogo doesn't understand");
  189. }
  190.  
  191. want_creature()
  192. {
  193. expecting_got("creature", ctoke);
  194. }
  195.  
  196. want_string()
  197. {
  198. expecting_got("string", ctoke);
  199. }
  200.  
  201.  
  202. want_label()
  203. {
  204. say_fatal("Expecting a label");
  205. }
  206.  
  207. want_closing()
  208. {
  209. expecting_got("}", ctoke);
  210. }
  211.  
  212. want_opening()
  213. {
  214. expecting_got("{", ctoke);
  215. }
  216.  
  217. want_prim()
  218. {
  219. say_fatal("Expecting a number, variable, or string");
  220. }
  221.  
  222. redefined(s)
  223. char *s;
  224. {
  225. char buf[80];
  226.  
  227. sprintf(buf, "%s redefined", s);
  228. say_fatal(buf);
  229. }
  230.  
  231. undefined(s)
  232. char *s;
  233. {
  234. char buf[80];
  235.  
  236. sprintf(buf, "%s undefined", s);
  237. say_fatal(buf);
  238. }
  239.  
  240. want_variable()
  241. {
  242. if (cttype == TOK_UNDEF)
  243.     {
  244.     undefined(ctoke);
  245.     }
  246. else
  247.     {
  248.     expecting_got("Variable", ctoke);
  249.     }
  250. }
  251.  
  252. eat_token(tok)
  253. char *tok;
  254. {
  255. if (!need_token())
  256.     return(0);
  257. if (strcmp(tok, ctoke) != 0)
  258.     {
  259.     expecting_got(tok, ctoke);
  260.     return(0);
  261.     }
  262. return(1);
  263. }
  264.  
  265. char *tnames[] = 
  266.     {
  267.     "int",
  268.     "func",
  269.     "label",
  270.     "forward label",
  271.     "forward function",
  272.     "first forward function",
  273.     "built in function",
  274.     "string",
  275.     "action",
  276.     "bad",
  277.     "creature",
  278.     "fcreature",
  279.     "constant",
  280.     "unknown",
  281.     };
  282.  
  283. type_mismatch(right,wrong)
  284. int right, wrong;
  285. {
  286. printf("Should be a %s, but it's a %s\n", tnames[right], tnames[wrong]);
  287. }
  288.  
  289. check_params(name, fuf, ptypes, pcount)
  290. char *name;
  291. struct func_frame *fuf;
  292. unsigned char *ptypes;
  293. int pcount;
  294. {
  295. int i;
  296. unsigned char *optypes;
  297. char buf[90];
  298. int o, p;
  299.  
  300. optypes = fuf->ptypes;
  301. if (pcount != fuf->pcount)
  302.     {
  303.     sprintf(buf, "%s needs %d parameters but has %d",  name,
  304.         fuf->pcount, pcount);
  305.     say_fatal(buf);
  306.     return(0);
  307.     }
  308. for (i=1; i<=pcount; i++)
  309.     {
  310.     o = *optypes++;
  311.     p = *ptypes++;
  312.     if (o != p)
  313.         {
  314.         printf("%s", line_buf);
  315.         sprintf(buf, "%s's parameter #%d isn't right type.", name, i);
  316.         err_info(buf);
  317.         type_mismatch(o,p);
  318.         fatal();
  319.         wait_ok();
  320.         return(0);
  321.         }
  322.     }
  323. return(1);
  324. }
  325.  
  326. spawn_usage()
  327. {
  328. printf("%s", line_buf);
  329. err_info("Bad Spawn");
  330. puts("Usage:  Spawn(creature, xpos, ypos, xspeed, yspeed)");
  331. fatal();
  332. wait_ok();
  333. }
  334.  
  335. missing_function(fname)
  336. char *fname;
  337. {
  338. char buf[80];
  339.  
  340. sprintf(buf, "missing 'to' before %s???", fname);
  341. say_err(buf);
  342. }
  343.  
  344. used_not_assigned(name)
  345. char *name;
  346. {
  347. char buf[100];
  348.  
  349. sprintf(buf, "possible use of %s before assignment.", name);
  350. say_err(buf);
  351. }
  352.  
  353. expect_2num(who,t1,t2)
  354. char *who;
  355. int t1,t2;
  356. {
  357. char buf[80];
  358.  
  359. sprintf(buf, "%s %s %s ???", tnames[t1], who, tnames[t2]);
  360. say_fatal(buf);
  361. }
  362.  
  363. want_int(t)
  364. int t;
  365. {
  366. expecting_got("numerical expression", tnames[t]);
  367. }
  368.